//--------------------------------------------------- // Purpose: Calculate path of cannon ball // Author: John Gauch //--------------------------------------------------- #include #include using namespace std; int main() { // Declare variables // Get initial velocity of cannon ball // Loop calculating cannon ball location for (int second = 0; second < 100; second++) { // Print location // Update location // Update velocity } }